iT邦幫忙

0

30天程式語言研究

  • 分享至 

  • xImage
  •  

今天是30天程式語言研究的第十一天,研究的語言一樣是python,今天主要學習的是問答程式

網址:https://www.youtube.com/watch?v=zdMUJJKFdsU&ab_channel=GrandmaCan-%E6%88%91%E9%98%BF%E5%AC%A4%E9%83%BD%E6%9C%83

筆記:

問答程式

#question.py
class Question:
def init(self, description, answer):
self.description = description
self.answer = answer

from question import Question #從檔案question指引入Question
test = [
"1+3=?\n(a) 2\n(b) 3\n(c) 4\n\n",
"1公尺等於幾公分?\n(a) 10\n(b) 100\n(c) 1000\n\n",
"香蕉是什麼顏色?\n(a) 黑色\n(b) 黃色\n(c) 白色\n\n"
]
questions = [
Question(test[0],"c"), #問題表達
Question(test[1],"b"),
Question(test[2],"b")
]
def run_test(questions):
score = 0
for question in questions:
answer = input(question.description)
if answer == question.answer:
score += 1
print("你得到" + str(score) + "分,共" + str(len(questions)) + "題")

run_test(questions)


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言